  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f4f4f4;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Styles */
                header {
            background-color: #e10600;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            background: white;
            color: #e10600;
            padding: 0 5px;
            margin-right: 5px;
            border-radius: 4px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: white;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .logo span {
            background: white;
            color: #e10600;
            padding: 0 8px;
            border-radius: 6px;
        }
        
        /* Navigation */
        .tabs {
            display: flex;
            justify-content: center;
            margin: 20px 0 30px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tab {
            padding: 12px 25px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .tab.active {
            background: white;
            color: #e10600;
        }
        
        .tab:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        /* Team Cards */
        .team-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .team-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }
        
        .team-card:hover {
            transform: translateY(-5px);
        }
        
        .team-header {
            padding: 20px;
            color: white;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .team-logo {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .team-name {
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .team-base {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .team-content {
            padding: 20px;
            text-align: center;
        }
        .team-content a{
            color: rgb(19, 2, 2);
            text-decoration: none;
            color: #830702;
            font-size: 20px;
            font-weight: bold;
            border: solid 2px black;
            border-radius: 10px;
            background-color: rgb(58, 219, 72);
            padding: auto;
            padding-left: 50px;
            padding-right: 50px;
        }
        
        .team-detail {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .team-detail i {
            color: #e10600;
            font-size: 1.2rem;
            width: 25px;
        }
        .drivers {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .driver {
            flex: 1;
            text-align: center;
            padding: 12px;
            background: #f9f9f9;
            border-radius: 8px;
        }
        
        .driver-name {
            font-weight: 600;
            margin-top: 8px;
        }
        
        .driver-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #e10600;
            line-height: 1;
            margin: 5px 0;
        }
        
        /* Team Colors */
        .redbull .team-header { background: #3671c6; }
        .redbull .team-logo { color: #3671c6; }
        
        .ferrari .team-header { background: #f91536; }
        .ferrari .team-logo { color: #f91536; }
        
        .mercedes .team-header { background: #27f4d2; }
        .mercedes .team-logo { color: #27f4d2; }
        
        .mclaren .team-header { background: #f58020; }
        .mclaren .team-logo { color: #f58020; }
        
        .aston-martin .team-header { background: #229971; }
        .aston-martin .team-logo { color: #229971; }
        
        .alpine .team-header { background: #2292b4; }
        .alpine .team-logo { color: #2292b4; }
        
        .williams .team-header { background: #64c4ff; }
        .williams .team-logo { color: #64c4ff; }
        
        .haas .team-header { background: #b6babd; }
        .haas .team-logo { color: #b6babd; }
        
        .sauber .team-header { background: #52e252; }
        .sauber .team-logo { color: #52e252; }
        
        .racing-bulls .team-header { background: #5e8faa; }
        .racing-bulls .team-logo { color: #5e8faa; }
        
        /* Footer */
        footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            color: #777;
            border-top: 1px solid #ddd;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .team-cards {
                grid-template-columns: 1fr;
            }
            
            .tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .tab {
                width: 80%;
                text-align: center;
            }
        }